home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / gnu / standar1.tex < prev    next >
Text File  |  1994-04-20  |  83KB  |  2,551 lines

  1. START-INFO-DIR-ENTRY
  2. * Standards: (standards).        GNU coding standards.
  3. END-INFO-DIR-ENTRY
  4.  
  5.    GNU Coding Standards Copyright (C) 1992, 1993, 1994 Free Software
  6. Foundation
  7.  
  8.    Permission is granted to make and distribute verbatim copies of this
  9. manual provided the copyright notice and this permission notice are
  10. preserved on all copies.
  11.  
  12.    Permission is granted to copy and distribute modified versions of
  13. this manual under the conditions for verbatim copying, provided that
  14. the entire resulting derived work is distributed under the terms of a
  15. permission notice identical to this one.
  16.  
  17.    Permission is granted to copy and distribute translations of this
  18. manual into another language, under the above conditions for modified
  19. versions, except that this permission notice may be stated in a
  20. translation approved by the Free Software Foundation.
  21.  
  22. Version
  23. *******
  24.  
  25.    Last updated 28 March 1994.
  26.  
  27. Referring to Proprietary Programs
  28. *********************************
  29.  
  30.    Don't in any circumstances refer to Unix source code for or during
  31. your work on GNU!  (Or to any other proprietary programs.)
  32.  
  33.    If you have a vague recollection of the internals of a Unix program,
  34. this does not absolutely mean you can't write an imitation of it, but
  35. do try to organize the imitation internally along different lines,
  36. because this is likely to make the details of the Unix version
  37. irrelevant and dissimilar to your results.
  38.  
  39.    For example, Unix utilities were generally optimized to minimize
  40. memory use; if you go for speed instead, your program will be very
  41. different.  You could keep the entire input file in core and scan it
  42. there instead of using stdio.  Use a smarter algorithm discovered more
  43. recently than the Unix program.  Eliminate use of temporary files.  Do
  44. it in one pass instead of two (we did this in the assembler).
  45.  
  46.    Or, on the contrary, emphasize simplicity instead of speed.  For some
  47. applications, the speed of today's computers makes simpler algorithms
  48. adequate.
  49.  
  50.    Or go for generality.  For example, Unix programs often have static
  51. tables or fixed-size strings, which make for arbitrary limits; use
  52. dynamic allocation instead.  Make sure your program handles NULs and
  53. other funny characters in the input files.  Add a programming language
  54. for extensibility and write part of the program in that language.
  55.  
  56.    Or turn some parts of the program into independently usable
  57. libraries.  Or use a simple garbage collector instead of tracking
  58. precisely when to free memory, or use a new GNU facility such as
  59. obstacks.
  60.  
  61. Accepting Contributions
  62. ***********************
  63.  
  64.    If someone else sends you a piece of code to add to the program you
  65. are working on, we need legal papers to use it--the same sort of legal
  66. papers we will need to get from you.  *Each* significant contributor to
  67. a program must sign some sort of legal papers in order for us to have
  68. clear title to the program.  The main author alone is not enough.
  69.  
  70.    So, before adding in any contributions from other people, tell us so
  71. we can arrange to get the papers.  Then wait until we tell you that we
  72. have received the signed papers, before you actually use the
  73. contribution.
  74.  
  75.    This applies both before you release the program and afterward.  If
  76. you receive diffs to fix a bug, and they make significant change, we
  77. need legal papers for it.
  78.  
  79.    You don't need papers for changes of a few lines here or there, since
  80. they are not significant for copyright purposes.  Also, you don't need
  81. papers if all you get from the suggestion is some ideas, not actual code
  82. which you use.  For example, if you write a different solution to the
  83. problem, you don't need to get papers.
  84.  
  85.    I know this is frustrating; it's frustrating for us as well.  But if
  86. you don't wait, you are going out on a limb--for example, what if the
  87. contributor's employer won't sign a disclaimer?  You might have to take
  88. that code out again!
  89.  
  90.    The very worst thing is if you forget to tell us about the other
  91. contributor.  We could be very embarrassed in court some day as a
  92. result.
  93.  
  94. Change Logs
  95. ***********
  96.  
  97.    Keep a change log for each directory, describing the changes made to
  98. source files in that directory.  The purpose of this is so that people
  99. investigating bugs in the future will know about the changes that might
  100. have introduced the bug.  Often a new bug can be found by looking at
  101. what was recently changed.  More importantly, change logs can help
  102. eliminate conceptual inconsistencies between different parts of a
  103. program; they can give you a history of how the conflicting concepts
  104. arose.
  105.  
  106.    Use the Emacs command `M-x add-change' to start a new entry in the
  107. change log.  An entry should have an asterisk, the name of the changed
  108. file, and then in parentheses the name of the changed functions,
  109. variables or whatever, followed by a colon.  Then describe the changes
  110. you made to that function or variable.
  111.  
  112.    Separate unrelated entries with blank lines.  When two entries
  113. represent parts of the same change, so that they work together, then
  114. don't put blank lines between them.  Then you can omit the file name
  115. and the asterisk when successive entries are in the same file.
  116.  
  117.    Here are some examples:
  118.  
  119.      * register.el (insert-register): Return nil.
  120.      (jump-to-register): Likewise.
  121.      
  122.      * sort.el (sort-subr): Return nil.
  123.      
  124.      * tex-mode.el (tex-bibtex-file, tex-file, tex-region):
  125.      Restart the tex shell if process is gone or stopped.
  126.      (tex-shell-running): New function.
  127.      
  128.      * expr.c (store_one_arg): Round size up for move_block_to_reg.
  129.      (expand_call): Round up when emitting USE insns.
  130.      * stmt.c (assign_parms): Round size up for move_block_from_reg.
  131.  
  132.    It's important to name the changed function or variable in full.
  133. Don't abbreviate them; don't combine them.  Subsequent maintainers will
  134. often search for a function name to find all the change log entries that
  135. pertain to it; if you abbreviate the name, they won't find it when they
  136. search.  For example, some people are tempted to abbreviate groups of
  137. function names by writing `* register.el ({insert,jump-to}-register)';
  138. this is not a good idea, since searching for `jump-to-register' or
  139. `insert-register' would not find the entry.
  140.  
  141.    There's no need to describe the full purpose of the changes or how
  142. they work together.  It is better to put such explanations in comments
  143. in the code.  That's why just "New function" is enough; there is a
  144. comment with the function in the source to explain what it does.
  145.  
  146.    However, sometimes it is useful to write one line to describe the
  147. overall purpose of a large batch of changes.
  148.  
  149.    You can think of the change log as a conceptual "undo list" which
  150. explains how earlier versions were different from the current version.
  151. People can see the current version; they don't need the change log to
  152. tell them what is in it.  What they want from a change log is a clear
  153. explanation of how the earlier version differed.
  154.  
  155.    When you change the calling sequence of a function in a simple
  156. fashion, and you change all the callers of the function, there is no
  157. need to make individual entries for all the callers.  Just write in the
  158. entry for the function being called, "All callers changed."
  159.  
  160.    When you change just comments or doc strings, it is enough to write
  161. an entry for the file, without mentioning the functions.  Write just,
  162. "Doc fix."  There's no need to keep a change log for documentation
  163. files.  This is because documentation is not susceptible to bugs that
  164. are hard to fix.  Documentation does not consist of parts that must
  165. interact in a precisely engineered fashion; to correct an error, you
  166. need not know the history of the erroneous passage.
  167.  
  168. Compatibility with Other Implementations
  169. ****************************************
  170.  
  171.    With certain exceptions, utility programs and libraries for GNU
  172. should be upward compatible with those in Berkeley Unix, and upward
  173. compatible with ANSI C if ANSI C specifies their behavior, and upward
  174. compatible with POSIX if POSIX specifies their behavior.
  175.  
  176.    When these standards conflict, it is useful to offer compatibility
  177. modes for each of them.
  178.  
  179.    ANSI C and POSIX prohibit many kinds of extensions.  Feel free to
  180. make the extensions anyway, and include a `--ansi' or `--compatible'
  181. option to turn them off.  However, if the extension has a significant
  182. chance of breaking any real programs or scripts, then it is not really
  183. upward compatible.  Try to redesign its interface.
  184.  
  185.    Many GNU programs suppress extensions that conflict with POSIX if the
  186. environment variable `POSIXLY_CORRECT' is defined (even if it is
  187. defined with a null value).  Please make your program recognize this
  188. variable if appropriate.
  189.  
  190.    When a feature is used only by users (not by programs or command
  191. files), and it is done poorly in Unix, feel free to replace it
  192. completely with something totally different and better.  (For example,
  193. vi is replaced with Emacs.)  But it is nice to offer a compatible
  194. feature as well.  (There is a free vi clone, so we offer it.)
  195.  
  196.    Additional useful features not in Berkeley Unix are welcome.
  197. Additional programs with no counterpart in Unix may be useful, but our
  198. first priority is usually to duplicate what Unix already has.
  199.  
  200. Makefile Conventions
  201. ********************
  202.  
  203.    This chapter describes conventions for writing the Makefiles for GNU
  204. programs.
  205.  
  206. General Conventions for Makefiles
  207. =================================
  208.  
  209.    Every Makefile should contain this line:
  210.  
  211.      SHELL = /bin/sh
  212.  
  213. to avoid trouble on systems where the `SHELL' variable might be
  214. inherited from the environment.  (This is never a problem with GNU
  215. `make'.)
  216.  
  217.    Don't assume that `.' is in the path for command execution.  When
  218. you need to run programs that are a part of your package during the
  219. make, please make sure that it uses `./' if the program is built as
  220. part of the make or `$(srcdir)/' if the file is an unchanging part of
  221. the source code.  Without one of these prefixes, the current search
  222. path is used.
  223.  
  224.    The distinction between `./' and `$(srcdir)/' is important when
  225. using the `--srcdir' option to `configure'.  A rule of the form:
  226.  
  227.      foo.1 : foo.man sedscript
  228.              sed -e sedscript foo.man > foo.1
  229.  
  230. will fail when the current directory is not the source directory,
  231. because `foo.man' and `sedscript' are not in the current directory.
  232.  
  233.    When using GNU `make', relying on `VPATH' to find the source file
  234. will work in the case where there is a single dependency file, since
  235. the `make' automatic variable `$<' will represent the source file
  236. wherever it is.  (Many versions of `make' set `$<' only in implicit
  237. rules.)  A makefile target like
  238.  
  239.      foo.o : bar.c
  240.              $(CC) -I. -I$(srcdir) $(CFLAGS) -c bar.c -o foo.o
  241.  
  242. should instead be written as
  243.  
  244.      foo.o : bar.c
  245.              $(CC) $(CFLAGS) $< -o $@
  246.  
  247. in order to allow `VPATH' to work correctly.  When the target has
  248. multiple dependencies, using an explicit `$(srcdir)' is the easiest way
  249. to make the rule work well.  For example, the target above for `foo.1'
  250. is best written as:
  251.  
  252.      foo.1 : foo.man sedscript
  253.              sed -s $(srcdir)/sedscript $(srcdir)/foo.man > foo.1
  254.  
  255. Utilities in Makefiles
  256. ======================
  257.  
  258.    Write the Makefile commands (and any shell scripts, such as
  259. `configure') to run in `sh', not in `csh'.  Don't use any special
  260. features of `ksh' or `bash'.
  261.  
  262.    The `configure' script and the Makefile rules for building and
  263. installation should not use any utilities directly except these:
  264.  
  265.      cat cmp cp echo egrep expr grep
  266.      ln mkdir mv pwd rm rmdir sed test touch
  267.  
  268.    Stick to the generally supported options for these programs.  For
  269. example, don't use `mkdir -p', convenient as it may be, because most
  270. systems don't support it.
  271.  
  272.    The Makefile rules for building and installation can also use
  273. compilers and related programs, but should do so via `make' variables
  274. so that the user can substitute alternatives.  Here are some of the
  275. programs we mean:
  276.  
  277.      ar bison cc flex install ld lex
  278.      make makeinfo ranlib texi2dvi yacc
  279.  
  280.    When you use `ranlib', you should test whether it exists, and run it
  281. only if it exists, so that the distribution will work on systems that
  282. don't have `ranlib'.
  283.  
  284.    If you use symbolic links, you should implement a fallback for
  285. systems that don't have symbolic links.
  286.  
  287.    It is ok to use other utilities in Makefile portions (or scripts)
  288. intended only for particular systems where you know those utilities to
  289. exist.
  290.  
  291. Standard Targets for Users
  292. ==========================
  293.  
  294.    All GNU programs should have the following targets in their
  295. Makefiles:
  296.  
  297. `all'
  298.      Compile the entire program.  This should be the default target.
  299.      This target need not rebuild any documentation files; Info files
  300.      should normally be included in the distribution, and DVI files
  301.      should be made only when explicitly asked for.
  302.  
  303. `install'
  304.      Compile the program and copy the executables, libraries, and so on
  305.      to the file names where they should reside for actual use.  If
  306.      there is a simple test to verify that a program is properly
  307.      installed, this target should run that test.
  308.  
  309.      The commands should create all the directories in which files are
  310.      to be installed, if they don't already exist.  This includes the
  311.      directories specified as the values of the variables `prefix' and
  312.      `exec_prefix', as well as all subdirectories that are needed.  One
  313.      way to do this is by means of an `installdirs' target as described
  314.      below.
  315.  
  316.      Use `-' before any command for installing a man page, so that
  317.      `make' will ignore any errors.  This is in case there are systems
  318.      that don't have the Unix man page documentation system installed.
  319.  
  320.      The way to install Info files is to copy them into `$(infodir)'
  321.      with `$(INSTALL_DATA)' (*note Command Variables::.), and then run
  322.      the `install-info' program if it is present.  `install-info' is a
  323.      script that edits the Info `dir' file to add or update the menu
  324.      entry for the given Info file; it will be part of the Texinfo
  325.      package.  Here is a sample rule to install an Info file:
  326.  
  327.           $(infodir)/foo.info: foo.info
  328.           # There may be a newer info file in . than in srcdir.
  329.                   -if test -f foo.info; then d=.; \
  330.                    else d=$(srcdir); fi; \
  331.                   $(INSTALL_DATA) $$d/foo.info $@; \
  332.           # Run install-info only if it exists.
  333.           # Use `if' instead of just prepending `-' to the
  334.           # line so we notice real errors from install-info.
  335.           # We use `$(SHELL) -c' because some shells do not
  336.           # fail gracefully when there is an unknown command.
  337.                   if $(SHELL) -c 'install-info --version' \
  338.                      >/dev/null 2>&1; then \
  339.                     install-info --infodir=$(infodir) $$d/foo.info; \
  340.                   else true; fi
  341.  
  342. `uninstall'
  343.      Delete all the installed files that the `install' target would
  344.      create (but not the noninstalled files such as `make all' would
  345.      create).
  346.  
  347. `clean'
  348.      Delete all files from the current directory that are normally
  349.      created by building the program.  Don't delete the files that
  350.      record the configuration.  Also preserve files that could be made
  351.      by building, but normally aren't because the distribution comes
  352.      with them.
  353.  
  354.      Delete `.dvi' files here if they are not part of the distribution.
  355.  
  356. `distclean'
  357.      Delete all files from the current directory that are created by
  358.      configuring or building the program.  If you have unpacked the
  359.      source and built the program without creating any other files,
  360.      `make distclean' should leave only the files that were in the
  361.      distribution.
  362.  
  363. `mostlyclean'
  364.      Like `clean', but may refrain from deleting a few files that people
  365.      normally don't want to recompile.  For example, the `mostlyclean'
  366.      target for GCC does not delete `libgcc.a', because recompiling it
  367.      is rarely necessary and takes a lot of time.
  368.  
  369. `realclean'
  370.      Delete everything from the current directory that can be
  371.      reconstructed with this Makefile.  This typically includes
  372.      everything deleted by `distclean', plus more: C source files
  373.      produced by Bison, tags tables, Info files, and so on.
  374.  
  375.      One exception, however: `make realclean' should not delete
  376.      `configure' even if `configure' can be remade using a rule in the
  377.      Makefile.  More generally, `make realclean' should not delete
  378.      anything that needs to exist in order to run `configure' and then
  379.      begin to build the program.
  380.  
  381. `TAGS'
  382.      Update a tags table for this program.
  383.  
  384. `info'
  385.      Generate any Info files needed.  The best way to write the rules
  386.      is as follows:
  387.  
  388.           info: foo.info
  389.           
  390.           foo.info: foo.texi chap1.texi chap2.texi
  391.                   $(MAKEINFO) $(srcdir)/foo.texi
  392.  
  393.      You must define the variable `MAKEINFO' in the Makefile.  It should
  394.      run the `makeinfo' program, which is part of the Texinfo
  395.      distribution.
  396.  
  397. `dvi'
  398.      Generate DVI files for all TeXinfo documentation.  For example:
  399.  
  400.           dvi: foo.dvi
  401.           
  402.           foo.dvi: foo.texi chap1.texi chap2.texi
  403.                   $(TEXI2DVI) $(srcdir)/foo.texi
  404.  
  405.      You must define the variable `TEXI2DVI' in the Makefile.  It should
  406.      run the program `texi2dvi', which is part of the Texinfo
  407.      distribution.  Alternatively, write just the dependencies, and
  408.      allow GNU Make to provide the command.
  409.  
  410. `dist'
  411.      Create a distribution tar file for this program.  The tar file
  412.      should be set up so that the file names in the tar file start with
  413.      a subdirectory name which is the name of the package it is a
  414.      distribution for.  This name can include the version number.
  415.  
  416.      For example, the distribution tar file of GCC version 1.40 unpacks
  417.      into a subdirectory named `gcc-1.40'.
  418.  
  419.      The easiest way to do this is to create a subdirectory
  420.      appropriately named, use `ln' or `cp' to install the proper files
  421.      in it, and then `tar' that subdirectory.
  422.  
  423.      The `dist' target should explicitly depend on all non-source files
  424.      that are in the distribution, to make sure they are up to date in
  425.      the distribution.  *Note Making Releases: (standards)Releases.
  426.  
  427. `check'
  428.      Perform self-tests (if any).  The user must build the program
  429.      before running the tests, but need not install the program; you
  430.      should write the self-tests so that they work when the program is
  431.      built but not installed.
  432.  
  433.    The following targets are suggested as conventional names, for
  434. programs in which they are useful.
  435.  
  436. `installcheck'
  437.      Perform installation tests (if any).  The user must build and
  438.      install the program before running the tests.  You should not
  439.      assume that `$(bindir)' is in the search path.
  440.  
  441. `installdirs'
  442.      It's useful to add a target named `installdirs' to create the
  443.      directories where files are installed, and their parent
  444.      directories.  There is a script called `mkinstalldirs' which is
  445.      convenient for this; find it in the Texinfo package.You can use a
  446.      rule like this:
  447.  
  448.           # Make sure all installation directories (e.g. $(bindir))
  449.           # actually exist by making them if necessary.
  450.           installdirs: mkinstalldirs
  451.                   $(srcdir)/mkinstalldirs $(bindir) $(datadir) \
  452.                                           $(libdir) $(infodir) \
  453.                                           $(mandir)
  454.  
  455. Variables for Specifying Commands
  456. =================================
  457.  
  458.    Makefiles should provide variables for overriding certain commands,
  459. options, and so on.
  460.  
  461.    In particular, you should run most utility programs via variables.
  462. Thus, if you use Bison, have a variable named `BISON' whose default
  463. value is set with `BISON = bison', and refer to it with `$(BISON)'
  464. whenever you need to use Bison.
  465.  
  466.    File management utilities such as `ln', `rm', `mv', and so on, need
  467. not be referred to through variables in this way, since users don't
  468. need to replace them with other programs.
  469.  
  470.    Each program-name variable should come with an options variable that
  471. is used to supply options to the program.  Append `FLAGS' to the
  472. program-name variable name to get the options variable name--for
  473. example, `BISONFLAGS'.  (The name `CFLAGS' is an exception to this
  474. rule, but we keep it because it is standard.)  Use `CPPFLAGS' in any
  475. compilation command that runs the preprocessor, and use `LDFLAGS' in
  476. any compilation command that does linking as well as in any direct use
  477. of `ld'.
  478.  
  479.    If there are C compiler options that *must* be used for proper
  480. compilation of certain files, do not include them in `CFLAGS'.  Users
  481. expect to be able to specify `CFLAGS' freely themselves.  Instead,
  482. arrange to pass the necessary options to the C compiler independently
  483. of `CFLAGS', by writing them explicitly in the compilation commands or
  484. by defining an implicit rule, like this:
  485.  
  486.      CFLAGS = -g
  487.      ALL_CFLAGS = -I. $(CFLAGS)
  488.      .c.o:
  489.              $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
  490.  
  491.    Do include the `-g' option in `CFLAGS', because that is not
  492. *required* for proper compilation.  You can consider it a default that
  493. is only recommended.  If the package is set up so that it is compiled
  494. with GCC by default, then you might as well include `-O' in the default
  495. value of `CFLAGS' as well.
  496.  
  497.    Put `CFLAGS' last in the compilation command, after other variables
  498. containing compiler options, so the user can use `CFLAGS' to override
  499. the others.
  500.  
  501.    Every Makefile should define the variable `INSTALL', which is the
  502. basic command for installing a file into the system.
  503.  
  504.    Every Makefile should also define the variables `INSTALL_PROGRAM'
  505. and `INSTALL_DATA'.  (The default for each of these should be
  506. `$(INSTALL)'.)  Then it should use those variables as the commands for
  507. actual installation, for executables and nonexecutables respectively.
  508. Use these variables as follows:
  509.  
  510.      $(INSTALL_PROGRAM) foo $(bindir)/foo
  511.      $(INSTALL_DATA) libfoo.a $(libdir)/libfoo.a
  512.  
  513. Always use a file name, not a directory name, as the second argument of
  514. the installation commands.  Use a separate command for each file to be
  515. installed.
  516.  
  517. Variables for Installation Directories
  518. ======================================
  519.  
  520.    Installation directories should always be named by variables, so it
  521. is easy to install in a nonstandard place.  The standard names for these
  522. variables are:
  523.  
  524. `prefix'
  525.      A prefix used in constructing the default values of the variables
  526.      listed below.  The default value of `prefix' should be `/usr/local'
  527.      (at least for now).
  528.  
  529. `exec_prefix'
  530.      A prefix used in constructing the default values of some of the
  531.      variables listed below.  The default value of `exec_prefix' should
  532.      be `$(prefix)'.
  533.  
  534.      Generally, `$(exec_prefix)' is used for directories that contain
  535.      machine-specific files (such as executables and subroutine
  536.      libraries), while `$(prefix)' is used directly for other
  537.      directories.
  538.  
  539. `bindir'
  540.      The directory for installing executable programs that users can
  541.      run.  This should normally be `/usr/local/bin', but write it as
  542.      `$(exec_prefix)/bin'.
  543.  
  544. `libdir'
  545.      The directory for installing executable files to be run by the
  546.      program rather than by users.  Object files and libraries of
  547.      object code should also go in this directory.  The idea is that
  548.      this directory is used for files that pertain to a specific
  549.      machine architecture, but need not be in the path for commands.
  550.      The value of `libdir' should normally be `/usr/local/lib', but
  551.      write it as `$(exec_prefix)/lib'.
  552.  
  553. `datadir'
  554.      The directory for installing read-only data files which the
  555.      programs refer to while they run.  This directory is used for
  556.      files which are independent of the type of machine being used.
  557.      This should normally be `/usr/local/lib', but write it as
  558.      `$(prefix)/lib'.
  559.  
  560. `statedir'
  561.      The directory for installing data files which the programs modify
  562.      while they run.  These files should be independent of the type of
  563.      machine being used, and it should be possible to share them among
  564.      machines at a network installation.  This should normally be
  565.      `/usr/local/lib', but write it as `$(prefix)/lib'.
  566.  
  567. `includedir'
  568.      The directory for installing header files to be included by user
  569.      programs with the C `#include' preprocessor directive.  This
  570.      should normally be `/usr/local/include', but write it as
  571.      `$(prefix)/include'.
  572.  
  573.      Most compilers other than GCC do not look for header files in
  574.      `/usr/local/include'.  So installing the header files this way is
  575.      only useful with GCC.  Sometimes this is not a problem because some
  576.      libraries are only really intended to work with GCC.  But some
  577.      libraries are intended to work with other compilers.  They should
  578.      install their header files in two places, one specified by
  579.      `includedir' and one specified by `oldincludedir'.
  580.  
  581. `oldincludedir'
  582.      The directory for installing `#include' header files for use with
  583.      compilers other than GCC.  This should normally be `/usr/include'.
  584.  
  585.      The Makefile commands should check whether the value of
  586.      `oldincludedir' is empty.  If it is, they should not try to use
  587.      it; they should cancel the second installation of the header files.
  588.  
  589.      A package should not replace an existing header in this directory
  590.      unless the header came from the same package.  Thus, if your Foo
  591.      package provides a header file `foo.h', then it should install the
  592.      header file in the `oldincludedir' directory if either (1) there
  593.      is no `foo.h' there or (2) the `foo.h' that exists came from the
  594.      Foo package.
  595.  
  596.      To tell whether `foo.h' came from the Foo package, put a magic
  597.      string in the file--part of a comment--and grep for that string.
  598.  
  599. `mandir'
  600.      The directory for installing the man pages (if any) for this
  601.      package.  It should include the suffix for the proper section of
  602.      the manual--usually `1' for a utility.  It will normally be
  603.      `/usr/local/man/man1', but you should write it as
  604.      `$(prefix)/man/man1'.
  605.  
  606. `man1dir'
  607.      The directory for installing section 1 man pages.
  608.  
  609. `man2dir'
  610.      The directory for installing section 2 man pages.
  611.  
  612. `...'
  613.      Use these names instead of `mandir' if the package needs to
  614.      install man pages in more than one section of the manual.
  615.  
  616.      *Don't make the primary documentation for any GNU software be a
  617.      man page.  Write a manual in Texinfo instead.  Man pages are just
  618.      for the sake of people running GNU software on Unix, which is a
  619.      secondary application only.*
  620.  
  621. `manext'
  622.      The file name extension for the installed man page.  This should
  623.      contain a period followed by the appropriate digit; it should
  624.      normally be `.1'.
  625.  
  626. `man1ext'
  627.      The file name extension for installed section 1 man pages.
  628.  
  629. `man2ext'
  630.      The file name extension for installed section 2 man pages.
  631.  
  632. `...'
  633.      Use these names instead of `manext' if the package needs to
  634.      install man pages in more than one section of the manual.
  635.  
  636. `infodir'
  637.      The directory for installing the Info files for this package.  By
  638.      default, it should be `/usr/local/info', but it should be written
  639.      as `$(prefix)/info'.
  640.  
  641. `srcdir'
  642.      The directory for the sources being compiled.  The value of this
  643.      variable is normally inserted by the `configure' shell script.
  644.  
  645.    For example:
  646.  
  647.      # Common prefix for installation directories.
  648.      # NOTE: This directory must exist when you start the install.
  649.      prefix = /usr/local
  650.      exec_prefix = $(prefix)
  651.      # Where to put the executable for the command `gcc'.
  652.      bindir = $(exec_prefix)/bin
  653.      # Where to put the directories used by the compiler.
  654.      libdir = $(exec_prefix)/lib
  655.      # Where to put the Info files.
  656.      infodir = $(prefix)/info
  657.  
  658.    If your program installs a large number of files into one of the
  659. standard user-specified directories, it might be useful to group them
  660. into a subdirectory particular to that program.  If you do this, you
  661. should write the `install' rule to create these subdirectories.
  662.  
  663.    Do not expect the user to include the subdirectory name in the value
  664. of any of the variables listed above.  The idea of having a uniform set
  665. of variable names for installation directories is to enable the user to
  666. specify the exact same values for several different GNU packages.  In
  667. order for this to be useful, all the packages must be designed so that
  668. they will work sensibly when the user does so.
  669.  
  670. How Configuration Should Work
  671. *****************************
  672.  
  673.    Each GNU distribution should come with a shell script named
  674. `configure'.  This script is given arguments which describe the kind of
  675. machine and system you want to compile the program for.
  676.  
  677.    The `configure' script must record the configuration options so that
  678. they affect compilation.
  679.  
  680.    One way to do this is to make a link from a standard name such as
  681. `config.h' to the proper configuration file for the chosen system.  If
  682. you use this technique, the distribution should *not* contain a file
  683. named `config.h'.  This is so that people won't be able to build the
  684. program without configuring it first.
  685.  
  686.    Another thing that `configure' can do is to edit the Makefile.  If
  687. you do this, the distribution should *not* contain a file named
  688. `Makefile'.  Instead, include a file `Makefile.in' which contains the
  689. input used for editing.  Once again, this is so that people won't be
  690. able to build the program without configuring it first.
  691.  
  692.    If `configure' does write the `Makefile', then `Makefile' should
  693. have a target named `Makefile' which causes `configure' to be rerun,
  694. setting up the same configuration that was set up last time.  The files
  695. that `configure' reads should be listed as dependencies of `Makefile'.
  696.  
  697.    All the files which are output from the `configure' script should
  698. have comments at the beginning explaining that they were generated
  699. automatically using `configure'.  This is so that users won't think of
  700. trying to edit them by hand.
  701.  
  702.    The `configure' script should write a file named `config.status'
  703. which describes which configuration options were specified when the
  704. program was last configured.  This file should be a shell script which,
  705. if run, will recreate the same configuration.
  706.  
  707.    The `configure' script should accept an option of the form
  708. `--srcdir=DIRNAME' to specify the directory where sources are found (if
  709. it is not the current directory).  This makes it possible to build the
  710. program in a separate directory, so that the actual source directory is
  711. not modified.
  712.  
  713.    If the user does not specify `--srcdir', then `configure' should
  714. check both `.' and `..' to see if it can find the sources.  If it finds
  715. the sources in one of these places, it should use them from there.
  716. Otherwise, it should report that it cannot find the sources, and should
  717. exit with nonzero status.
  718.  
  719.    Usually the easy way to support `--srcdir' is by editing a
  720. definition of `VPATH' into the Makefile.  Some rules may need to refer
  721. explicitly to the specified source directory.  To make this possible,
  722. `configure' can add to the Makefile a variable named `srcdir' whose
  723. value is precisely the specified directory.
  724.  
  725.    The `configure' script should also take an argument which specifies
  726. the type of system to build the program for.  This argument should look
  727. like this:
  728.  
  729.      CPU-COMPANY-SYSTEM
  730.  
  731.    For example, a Sun 3 might be `m68k-sun-sunos4.1'.
  732.  
  733.    The `configure' script needs to be able to decode all plausible
  734. alternatives for how to describe a machine.  Thus, `sun3-sunos4.1'
  735. would be a valid alias.  So would `sun3-bsd4.2', since SunOS is
  736. basically BSD and no other BSD system is used on a Sun.  For many
  737. programs, `vax-dec-ultrix' would be an alias for `vax-dec-bsd', simply
  738. because the differences between Ultrix and BSD are rarely noticeable,
  739. but a few programs might need to distinguish them.
  740.  
  741.    There is a shell script called `config.sub' that you can use as a
  742. subroutine to validate system types and canonicalize aliases.
  743.  
  744.    Other options are permitted to specify in more detail the software
  745. or hardware present on the machine, and include or exclude optional
  746. parts of the package:
  747.  
  748. `--enable-FEATURE[=PARAMETER]'
  749.      Configure the package to build and install an optional user-level
  750.      facility called FEATURE.  This allows users to choose which
  751.      optional features to include.  Giving an optional PARAMETER of
  752.      `no' should omit FEATURE, if it is built by default.
  753.  
  754.      No `--enable' option should *ever* cause one feature to replace
  755.      another.  No `--enable' option should ever substitute one useful
  756.      behavior for another useful behavior.  The only proper use for
  757.      `--enable' is for questions of whether to build part of the program
  758.      or exclude it.
  759.  
  760. `--with-PACKAGE'
  761.      The package PACKAGE will be installed, so configure this package
  762.      to work with PACKAGE.
  763.  
  764.      Possible values of PACKAGE include `x', `x-toolkit', `gnu-as' (or
  765.      `gas'), `gnu-ld', `gnu-libc', and `gdb'.
  766.  
  767.      Do not use a `--with' option to specify the file name to use to
  768.      find certain files.  That is outside the scope of what `--with'
  769.      options are for.
  770.  
  771. `--nfp'
  772.      The target machine has no floating point processor.
  773.  
  774. `--gas'
  775.      The target machine assembler is GAS, the GNU assembler.  This is
  776.      obsolete; users should use `--with-gnu-as' instead.
  777.  
  778. `--x'
  779.      The target machine has the X Window System installed.  This is
  780.      obsolete; users should use `--with-x' instead.
  781.  
  782.    All `configure' scripts should accept all of these "detail" options,
  783. whether or not they make any difference to the particular package at
  784. hand.  In particular, they should accept any option that starts with
  785. `--with-' or `--enable-'.  This is so users will be able to configure
  786. an entire GNU source tree at once with a single set of options.
  787.  
  788.    You will note that the categories `--with-' and `--enable-' are
  789. narrow: they *do not* provide a place for any sort of option you might
  790. think of.  That is deliberate.  We want to limit the possible
  791. configuration options in GNU software.  We do not want GNU programs to
  792. have idiosyncratic configuration options.
  793.  
  794.    Packages that perform part of compilation may support
  795. cross-compilation.  In such a case, the host and target machines for
  796. the program may be different.  The `configure' script should normally
  797. treat the specified type of system as both the host and the target,
  798. thus producing a program which works for the same type of machine that
  799. it runs on.
  800.  
  801.    The way to build a cross-compiler, cross-assembler, or what have
  802. you, is to specify the option `--host=HOSTTYPE' when running
  803. `configure'.  This specifies the host system without changing the type
  804. of target system.  The syntax for HOSTTYPE is the same as described
  805. above.
  806.  
  807.    Bootstrapping a cross-compiler requires compiling it on a machine
  808. other than the host it will run on.  Compilation packages accept a
  809. configuration option `--build=HOSTTYPE' for specifying the
  810. configuration on which you will compile them, in case that is different
  811. from the host.
  812.  
  813.    Programs for which cross-operation is not meaningful need not accept
  814. the `--host' option, because configuring an entire operating system for
  815. cross-operation is not a meaningful thing.
  816.  
  817.    Some programs have ways of configuring themselves automatically.  If
  818. your program is set up to do this, your `configure' script can simply
  819. ignore most of its arguments.
  820.  
  821. Using Languages Other Than C
  822. ****************************
  823.  
  824.    Using a language other than C is like using a non-standard feature:
  825. it will cause trouble for users.  Even if GCC supports the other
  826. language, users may find it inconvenient to have to install the
  827. compiler for that other language in order to build your program.  So
  828. please write in C.
  829.  
  830.    There are three exceptions for this rule:
  831.  
  832.    * It is okay to use a special language if the same program contains
  833.      an interpreter for that language.
  834.  
  835.      Thus, it is not a problem that GNU Emacs contains code written in
  836.      Emacs Lisp, because it comes with a Lisp interpreter.
  837.  
  838.    * It is okay to use another language in a tool specifically intended
  839.      for use with that language.
  840.  
  841.      This is okay because the only people who want to build the tool
  842.      will be those who have installed the other language anyway.
  843.  
  844.    * If an application is not of extremely widespread interest, then
  845.      perhaps it's not important if the application is inconvenient to
  846.      install.
  847.  
  848. Formatting Your Source Code
  849. ***************************
  850.  
  851.    It is important to put the open-brace that starts the body of a C
  852. function in column zero, and avoid putting any other open-brace or
  853. open-parenthesis or open-bracket in column zero.  Several tools look
  854. for open-braces in column zero to find the beginnings of C functions.
  855. These tools will not work on code not formatted that way.
  856.  
  857.    It is also important for function definitions to start the name of
  858. the function in column zero.  This helps people to search for function
  859. definitions, and may also help certain tools recognize them.  Thus, the
  860. proper format is this:
  861.  
  862.      static char *
  863.      concat (s1, s2)        /* Name starts in column zero here */
  864.           char *s1, *s2;
  865.      {                     /* Open brace in column zero here */
  866.        ...
  867.      }
  868.  
  869. or, if you want to use ANSI C, format the definition like this:
  870.  
  871.      static char *
  872.      concat (char *s1, char *s2)
  873.      {
  874.        ...
  875.      }
  876.  
  877.    In ANSI C, if the arguments don't fit nicely on one line, split it
  878. like this:
  879.  
  880.      int
  881.      lots_of_args (int an_integer, long a_long, short a_short,
  882.                    double a_double, float a_float)
  883.      ...
  884.  
  885.    For the body of the function, we prefer code formatted like this:
  886.  
  887.      if (x < foo (y, z))
  888.        haha = bar[4] + 5;
  889.      else
  890.        {
  891.          while (z)
  892.            {
  893.              haha += foo (z, z);
  894.              z--;
  895.            }
  896.          return ++x + bar ();
  897.        }
  898.  
  899.    We find it easier to read a program when it has spaces before the
  900. open-parentheses and after the commas.  Especially after the commas.
  901.  
  902.    When you split an expression into multiple lines, split it before an
  903. operator, not after one.  Here is the right way:
  904.  
  905.      if (foo_this_is_long && bar > win (x, y, z)
  906.          && remaining_condition)
  907.  
  908.    Try to avoid having two operators of different precedence at the same
  909. level of indentation.  For example, don't write this:
  910.  
  911.      mode = (inmode[j] == VOIDmode
  912.              || GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])
  913.              ? outmode[j] : inmode[j]);
  914.  
  915.    Instead, use extra parentheses so that the indentation shows the
  916. nesting:
  917.  
  918.      mode = ((inmode[j] == VOIDmode
  919.               || (GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])))
  920.              ? outmode[j] : inmode[j]);
  921.  
  922.    Insert extra parentheses so that Emacs will indent the code properly.
  923. For example, the following indentation looks nice if you do it by hand,
  924. but Emacs would mess it up:
  925.  
  926.      v = rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
  927.          + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000;
  928.  
  929.    But adding a set of parentheses solves the problem:
  930.  
  931.      v = (rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
  932.           + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000);
  933.  
  934.    Format do-while statements like this:
  935.  
  936.      do
  937.        {
  938.          a = foo (a);
  939.        }
  940.      while (a > 0);
  941.  
  942.    Please use formfeed characters (control-L) to divide the program into
  943. pages at logical places (but not within a function).  It does not matter
  944. just how long the pages are, since they do not have to fit on a printed
  945. page.  The formfeeds should appear alone on lines by themselves.
  946.  
  947. Commenting Your Work
  948. ********************
  949.  
  950.    Every program should start with a comment saying briefly what it is
  951. for.  Example: `fmt - filter for simple filling of text'.
  952.  
  953.    Please put a comment on each function saying what the function does,
  954. what sorts of arguments it gets, and what the possible values of
  955. arguments mean and are used for.  It is not necessary to duplicate in
  956. words the meaning of the C argument declarations, if a C type is being
  957. used in its customary fashion.  If there is anything nonstandard about
  958. its use (such as an argument of type `char *' which is really the
  959. address of the second character of a string, not the first), or any
  960. possible values that would not work the way one would expect (such as,
  961. that strings containing newlines are not guaranteed to work), be sure
  962. to say so.
  963.  
  964.    Also explain the significance of the return value, if there is one.
  965.  
  966.    Please put two spaces after the end of a sentence in your comments,
  967. so that the Emacs sentence commands will work.  Also, please write
  968. complete sentences and capitalize the first word.  If a lower-case
  969. identifer comes at the beginning of a sentence, don't capitalize it!
  970. Changing the spelling makes it a different identifier.  If you don't
  971. like starting a sentence with a lower case letter, write the sentence
  972. differently (e.g., "The identifier lower-case is ...").
  973.  
  974.    The comment on a function is much clearer if you use the argument
  975. names to speak about the argument values.  The variable name itself
  976. should be lower case, but write it in upper case when you are speaking
  977. about the value rather than the variable itself.  Thus, "the inode
  978. number NODE_NUM" rather than "an inode".
  979.  
  980.    There is usually no purpose in restating the name of the function in
  981. the comment before it, because the reader can see that for himself.
  982. There might be an exception when the comment is so long that the
  983. function itself would be off the bottom of the screen.
  984.  
  985.    There should be a comment on each static variable as well, like this:
  986.  
  987.      /* Nonzero means truncate lines in the display;
  988.         zero means continue them.  */
  989.      int truncate_lines;
  990.  
  991.    Every `#endif' should have a comment, except in the case of short
  992. conditionals (just a few lines) that are not nested.  The comment should
  993. state the condition of the conditional that is ending, *including its
  994. sense*.  `#else' should have a comment describing the condition *and
  995. sense* of the code that follows.  For example:
  996.  
  997.      #ifdef foo
  998.        ...
  999.      #else /* not foo */
  1000.        ...
  1001.      #endif /* not foo */
  1002.  
  1003. but, by contrast, write the comments this way for a `#ifndef':
  1004.  
  1005.      #ifndef foo
  1006.        ...
  1007.      #else /* foo */
  1008.        ...
  1009.      #endif /* foo */
  1010.  
  1011. Clean Use of C Constructs
  1012. *************************
  1013.  
  1014.    Please explicitly declare all arguments to functions.  Don't omit
  1015. them just because they are `int's.
  1016.  
  1017.    Declarations of external functions and functions to appear later in
  1018. the source file should all go in one place near the beginning of the
  1019. file (somewhere before the first function definition in the file), or
  1020. else should go in a header file.  Don't put `extern' declarations inside
  1021. functions.
  1022.  
  1023.    It used to be common practice to use the same local variables (with
  1024. names like `tem') over and over for different values within one
  1025. function.  Instead of doing this, it is better declare a separate local
  1026. variable for each distinct purpose, and give it a name which is
  1027. meaningful.  This not only makes programs easier to understand, it also
  1028. facilitates optimization by good compilers.  You can also move the
  1029. declaration of each local variable into the smallest scope that includes
  1030. all its uses.  This makes the program even cleaner.
  1031.  
  1032.    Don't use local variables or parameters that shadow global
  1033. identifiers.
  1034.  
  1035.    Don't declare multiple variables in one declaration that spans lines.
  1036. Start a new declaration on each line, instead.  For example, instead of
  1037. this:
  1038.  
  1039.      int    foo,
  1040.             bar;
  1041.  
  1042. write either this:
  1043.  
  1044.      int foo, bar;
  1045.  
  1046. or this:
  1047.  
  1048.      int foo;
  1049.      int bar;
  1050.  
  1051. (If they are global variables, each should have a comment preceding it
  1052. anyway.)
  1053.  
  1054.    When you have an `if'-`else' statement nested in another `if'
  1055. statement, always put braces around the `if'-`else'.  Thus, never write
  1056. like this:
  1057.  
  1058.      if (foo)
  1059.        if (bar)
  1060.          win ();
  1061.        else
  1062.          lose ();
  1063.  
  1064. always like this:
  1065.  
  1066.      if (foo)
  1067.        {
  1068.          if (bar)
  1069.            win ();
  1070.          else
  1071.            lose ();
  1072.        }
  1073.  
  1074.    If you have an `if' statement nested inside of an `else' statement,
  1075. either write `else if' on one line, like this,
  1076.  
  1077.      if (foo)
  1078.        ...
  1079.      else if (bar)
  1080.        ...
  1081.  
  1082. with its `then'-part indented like the preceding `then'-part, or write
  1083. the nested `if' within braces like this:
  1084.  
  1085.      if (foo)
  1086.        ...
  1087.      else
  1088.        {
  1089.          if (bar)
  1090.            ...
  1091.        }
  1092.  
  1093.    Don't declare both a structure tag and variables or typedefs in the
  1094. same declaration.  Instead, declare the structure tag separately and
  1095. then use it to declare the variables or typedefs.
  1096.  
  1097.    Try to avoid assignments inside `if'-conditions.  For example, don't
  1098. write this:
  1099.  
  1100.      if ((foo = (char *) malloc (sizeof *foo)) == 0)
  1101.        fatal ("virtual memory exhausted");
  1102.  
  1103. instead, write this:
  1104.  
  1105.      foo = (char *) malloc (sizeof *foo);
  1106.      if (foo == 0)
  1107.        fatal ("virtual memory exhausted");
  1108.  
  1109.    Don't make the program ugly to placate `lint'.  Please don't insert
  1110. any casts to `void'.  Zero without a cast is perfectly fine as a null
  1111. pointer constant.
  1112.  
  1113. Naming Variables and Functions
  1114. ******************************
  1115.  
  1116.    Please use underscores to separate words in a name, so that the Emacs
  1117. word commands can be useful within them.  Stick to lower case; reserve
  1118. upper case for macros and `enum' constants, and for name-prefixes that
  1119. follow a uniform convention.
  1120.  
  1121.    For example, you should use names like `ignore_space_change_flag';
  1122. don't use names like `iCantReadThis'.
  1123.  
  1124.    Variables that indicate whether command-line options have been
  1125. specified should be named after the meaning of the option, not after
  1126. the option-letter.  A comment should state both the exact meaning of
  1127. the option and its letter.  For example,
  1128.  
  1129.      /* Ignore changes in horizontal whitespace (-b).  */
  1130.      int ignore_space_change_flag;
  1131.  
  1132.    When you want to define names with constant integer values, use
  1133. `enum' rather than `#define'.  GDB knows about enumeration constants.
  1134.  
  1135.    Use file names of 14 characters or less, to avoid creating gratuitous
  1136. problems on System V.  You can use the program `doschk' to test for
  1137. this.  `doschk' also tests for potential name conflicts if the files
  1138. were loaded onto an MS-DOS file system--something you may or may not
  1139. care about.
  1140.  
  1141. Using Non-standard Features
  1142. ***************************
  1143.  
  1144.    Many GNU facilities that already exist support a number of convenient
  1145. extensions over the comparable Unix facilities.  Whether to use these
  1146. extensions in implementing your program is a difficult question.
  1147.  
  1148.    On the one hand, using the extensions can make a cleaner program.
  1149. On the other hand, people will not be able to build the program unless
  1150. the other GNU tools are available.  This might cause the program to
  1151. work on fewer kinds of machines.
  1152.  
  1153.    With some extensions, it might be easy to provide both alternatives.
  1154. For example, you can define functions with a "keyword" `INLINE' and
  1155. define that as a macro to expand into either `inline' or nothing,
  1156. depending on the compiler.
  1157.  
  1158.    In general, perhaps it is best not to use the extensions if you can
  1159. straightforwardly do without them, but to use the extensions if they
  1160. are a big improvement.
  1161.  
  1162.    An exception to this rule are the large, established programs (such
  1163. as Emacs) which run on a great variety of systems.  Such programs would
  1164. be broken by use of GNU extensions.
  1165.  
  1166.    Another exception is for programs that are used as part of
  1167. compilation: anything that must be compiled with other compilers in
  1168. order to bootstrap the GNU compilation facilities.  If these require
  1169. the GNU compiler, then no one can compile them without having them
  1170. installed already.  That would be no good.
  1171.  
  1172.    Since most computer systems do not yet implement ANSI C, using the
  1173. ANSI C features is effectively using a GNU extension, so the same
  1174. considerations apply.  (Except for ANSI features that we discourage,
  1175. such as trigraphs--don't ever use them.)
  1176.  
  1177. Calling System Functions
  1178. ************************
  1179.  
  1180.    C implementations differ substantially.  ANSI C reduces but does not
  1181. eliminate the incompatibilities; meanwhile, many users wish to compile
  1182. GNU software with pre-ANSI compilers.  This chapter gives
  1183. recommendations for how to use the more or less standard C library
  1184. functions to avoid unnecessary loss of portability.
  1185.  
  1186.    * Don't use the value of `sprintf'.  It returns the number of
  1187.      characters written on some systems, but not on all systems.
  1188.  
  1189.    * Don't declare system functions explicitly.
  1190.  
  1191.      Almost any declaration for a system function is wrong on some
  1192.      system.  To minimize conflicts, leave it to the system header
  1193.      files to declare system functions.  If the headers don't declare a
  1194.      function, let it remain undeclared.
  1195.  
  1196.      While it may seem unclean to use a function without declaring it,
  1197.      in practice this works fine for most system library functions on
  1198.      the systems where this really happens.  The problem is only
  1199.      theoretical.  By contrast, actual declarations have frequently
  1200.      caused actual conflicts.
  1201.  
  1202.    * If you must declare a system function, don't specify the argument
  1203.      types.  Use an old-style declaration, not an ANSI prototype.  The
  1204.      more you specify about the function, the more likely a conflict.
  1205.  
  1206.    * In particular, don't unconditionally declare `malloc' or `realloc'.
  1207.  
  1208.      Most GNU programs use those functions just once, in functions
  1209.      conventionally named `xmalloc' and `xrealloc'.  These functions
  1210.      call `malloc' and `realloc', respectively, and check the results.
  1211.  
  1212.      Because `xmalloc' and `xrealloc' are defined in your program, you
  1213.      can declare them in other files without any risk of type conflict.
  1214.  
  1215.      On most systems, `int' is the same length as a pointer; thus, the
  1216.      calls to `malloc' and `realloc' work fine.  For the few
  1217.      exceptional systems (mostly 64-bit machines), you can use
  1218.      *conditionalized* declarations of `malloc' and `realloc'--or put
  1219.      these declarations in configuration files specific to those
  1220.      systems.
  1221.  
  1222.    * The string functions require special treatment.  Some Unix systems
  1223.      have a header file `string.h'; other have `strings.h'.  Neither
  1224.      file name is portable.  There are two things you can do: use
  1225.      Autoconf to figure out which file to include, or don't include
  1226.      either file.
  1227.  
  1228.    * If you don't include either strings file, you can't get
  1229.      declarations for the string functions from the header file in the
  1230.      usual way.
  1231.  
  1232.      That causes less of a problem than you might think.  The newer ANSI
  1233.      string functions are off-limits anyway because many systems still
  1234.      don't support them.  The string functions you can use are these:
  1235.  
  1236.           strcpy   strncpy   strcat   strncat
  1237.           strlen   strcmp   strncmp
  1238.           strchr   strrchr
  1239.  
  1240.      The copy and concatenate functions work fine without a declaration
  1241.      as long as you don't use their values.  Using their values without
  1242.      a declaration fails on systems where the width of a pointer
  1243.      differs from the width of `int', and perhaps in other cases.  It
  1244.      is trivial to avoid using their values, so do that.
  1245.  
  1246.      The compare functions and `strlen' work fine without a declaration
  1247.      on most systems, possibly all the ones that GNU software runs on.
  1248.      You may find it necessary to declare them *conditionally* on a few
  1249.      systems.
  1250.  
  1251.      The search functions must be declared to return `char *'.  Luckily,
  1252.      there is no variation in the data type they return.  But there is
  1253.      variation in their names.  Some systems give these functions the
  1254.      names `index' and `rindex'; other systems use the names `strchr'
  1255.      and `strrchr'.  Some systems support both pairs of names, but
  1256.      neither pair works on all systems.
  1257.  
  1258.      You should pick a single pair of names and use it throughout your
  1259.      program.  (Nowadays, it is better to choose `strchr' and
  1260.      `strrchr'.)  Declare both of those names as functions returning
  1261.      `char *'.  On systems which don't support those names, define them
  1262.      as macros in terms of the other pair.  For example, here is what
  1263.      to put at the beginning of your file (or in a header) if you want
  1264.      to use the names `strchr' and `strrchr' throughout:
  1265.  
  1266.           #ifndef HAVE_STRCHR
  1267.           #define strchr index
  1268.           #endif
  1269.           #ifndef HAVE_STRRCHR
  1270.           #define strrchr rindex
  1271.           #endif
  1272.           
  1273.           char *strchr ();
  1274.           char *strrchr ();
  1275.  
  1276.    Here we assume that `HAVE_STRCHR' and `HAVE_STRRCHR' are macros
  1277. defined in systems where the corresponding functions exist.  One way to
  1278. get them properly defined is to use Autoconf.
  1279.  
  1280. Program Behavior for All Programs
  1281. *********************************
  1282.  
  1283.    Avoid arbitrary limits on the length or number of *any* data
  1284. structure, including filenames, lines, files, and symbols, by allocating
  1285. all data structures dynamically.  In most Unix utilities, "long lines
  1286. are silently truncated".  This is not acceptable in a GNU utility.
  1287.  
  1288.    Utilities reading files should not drop NUL characters, or any other
  1289. nonprinting characters *including those with codes above 0177*.  The
  1290. only sensible exceptions would be utilities specifically intended for
  1291. interface to certain types of printers that can't handle those
  1292. characters.
  1293.  
  1294.    Check every system call for an error return, unless you know you
  1295. wish to ignore errors.  Include the system error text (from `perror' or
  1296. equivalent) in *every* error message resulting from a failing system
  1297. call, as well as the name of the file if any and the name of the
  1298. utility.  Just "cannot open foo.c" or "stat failed" is not sufficient.
  1299.  
  1300.    Check every call to `malloc' or `realloc' to see if it returned
  1301. zero.  Check `realloc' even if you are making the block smaller; in a
  1302. system that rounds block sizes to a power of 2, `realloc' may get a
  1303. different block if you ask for less space.
  1304.  
  1305.    In Unix, `realloc' can destroy the storage block if it returns zero.
  1306. GNU `realloc' does not have this bug: if it fails, the original block
  1307. is unchanged.  Feel free to assume the bug is fixed.  If you wish to
  1308. run your program on Unix, and wish to avoid lossage in this case, you
  1309. can use the GNU `malloc'.
  1310.  
  1311.    You must expect `free' to alter the contents of the block that was
  1312. freed.  Anything you want to fetch from the block, you must fetch before
  1313. calling `free'.
  1314.  
  1315.    Use `getopt_long' to decode arguments, unless the argument syntax
  1316. makes this unreasonable.
  1317.  
  1318.    When static storage is to be written in during program execution, use
  1319. explicit C code to initialize it.  Reserve C initialized declarations
  1320. for data that will not be changed.
  1321.  
  1322.    Try to avoid low-level interfaces to obscure Unix data structures
  1323. (such as file directories, utmp, or the layout of kernel memory), since
  1324. these are less likely to work compatibly.  If you need to find all the
  1325. files in a directory, use `readdir' or some other high-level interface.
  1326. These will be supported compatibly by GNU.
  1327.  
  1328.    By default, the GNU system will provide the signal handling
  1329. functions of BSD and of POSIX.  So GNU software should be written to use
  1330. these.
  1331.  
  1332.    In error checks that detect "impossible" conditions, just abort.
  1333. There is usually no point in printing any message.  These checks
  1334. indicate the existence of bugs.  Whoever wants to fix the bugs will have
  1335. to read the source code and run a debugger.  So explain the problem with
  1336. comments in the source.  The relevant data will be in variables, which
  1337. are easy to examine with the debugger, so there is no point moving them
  1338. elsewhere.
  1339.  
  1340. Formatting Error Messages
  1341. *************************
  1342.  
  1343.    Error messages from compilers should look like this:
  1344.  
  1345.      SOURCE-FILE-NAME:LINENO: MESSAGE
  1346.  
  1347.    Error messages from other noninteractive programs should look like
  1348. this:
  1349.  
  1350.      PROGRAM:SOURCE-FILE-NAME:LINENO: MESSAGE
  1351.  
  1352. when there is an appropriate source file, or like this:
  1353.  
  1354.      PROGRAM: MESSAGE
  1355.  
  1356. when there is no relevant source file.
  1357.  
  1358.    In an interactive program (one that is reading commands from a
  1359. terminal), it is better not to include the program name in an error
  1360. message.  The place to indicate which program is running is in the
  1361. prompt or with the screen layout.  (When the same program runs with
  1362. input from a source other than a terminal, it is not interactive and
  1363. would do best to print error messages using the noninteractive style.)
  1364.  
  1365.    The string MESSAGE should not begin with a capital letter when it
  1366. follows a program name and/or filename.  Also, it should not end with a
  1367. period.
  1368.  
  1369.    Error messages from interactive programs, and other messages such as
  1370. usage messages, should start with a capital letter.  But they should not
  1371. end with a period.
  1372.  
  1373. Library Behavior
  1374. ****************
  1375.  
  1376.    Try to make library functions reentrant.  If they need to do dynamic
  1377. storage allocation, at least try to avoid any nonreentrancy aside from
  1378. that of `malloc' itself.
  1379.  
  1380.    Here are certain name conventions for libraries, to avoid name
  1381. conflicts.
  1382.  
  1383.    Choose a name prefix for the library, more than two characters long.
  1384. All external function and variable names should start with this prefix.
  1385. In addition, there should only be one of these in any given library
  1386. member.  This usually means putting each one in a separate source file.
  1387.  
  1388.    An exception can be made when two external symbols are always used
  1389. together, so that no reasonable program could use one without the
  1390. other; then they can both go in the same file.
  1391.  
  1392.    External symbols that are not documented entry points for the user
  1393. should have names beginning with `_'.  They should also contain the
  1394. chosen name prefix for the library, to prevent collisions with other
  1395. libraries.  These can go in the same files with user entry points if
  1396. you like.
  1397.  
  1398.    Static functions and variables can be used as you like and need not
  1399. fit any naming convention.
  1400.  
  1401. Portability As It Applies to GNU
  1402. ********************************
  1403.  
  1404.    Much of what is called "portability" in the Unix world refers to
  1405. porting to different Unix versions.  This is a secondary consideration
  1406. for GNU software, because its primary purpose is to run on top of one
  1407. and only one kernel, the GNU kernel, compiled with one and only one C
  1408. compiler, the GNU C compiler.  The amount and kinds of variation among
  1409. GNU systems on different cpu's will be like the variation among Berkeley
  1410. 4.3 systems on different cpu's.
  1411.  
  1412.    All users today run GNU software on non-GNU systems.  So supporting a
  1413. variety of non-GNU systems is desirable; simply not paramount.  The
  1414. easiest way to achieve portability to a reasonable range of systems is
  1415. to use Autoconf.  It's unlikely that your program needs to know more
  1416. information about the host machine than Autoconf can provide, simply
  1417. because most of the programs that need such knowledge have already been
  1418. written.
  1419.  
  1420.    It is difficult to be sure exactly what facilities the GNU kernel
  1421. will provide, since it isn't finished yet.  Therefore, assume you can
  1422. use anything in 4.3; just avoid using the format of semi-internal data
  1423. bases (e.g., directories) when there is a higher-level alternative
  1424. (`readdir').
  1425.  
  1426.    You can freely assume any reasonably standard facilities in the C
  1427. language, libraries or kernel, because we will find it necessary to
  1428. support these facilities in the full GNU system, whether or not we have
  1429. already done so.  The fact that there may exist kernels or C compilers
  1430. that lack these facilities is irrelevant as long as the GNU kernel and
  1431. C compiler support them.
  1432.  
  1433.    It remains necessary to worry about differences among cpu types, such
  1434. as the difference in byte ordering and alignment restrictions.  It's
  1435. unlikely that 16-bit machines will ever be supported by GNU, so there
  1436. is no point in spending any time to consider the possibility that an
  1437. int will be less than 32 bits.
  1438.  
  1439.    You can assume that all pointers have the same format, regardless of
  1440. the type they point to, and that this is really an integer.  There are
  1441. some weird machines where this isn't true, but they aren't important;
  1442. don't waste time catering to them.  Besides, eventually we will put
  1443. function prototypes into all GNU programs, and that will probably make
  1444. your program work even on weird machines.
  1445.  
  1446.    Since some important machines (including the 68000) are big-endian,
  1447. it is important not to assume that the address of an `int' object is
  1448. also the address of its least-significant byte.  Thus, don't make the
  1449. following mistake:
  1450.  
  1451.      int c;
  1452.      ...
  1453.      while ((c = getchar()) != EOF)
  1454.              write(file_descriptor, &c, 1);
  1455.  
  1456.    You can assume that it is reasonable to use a meg of memory.  Don't
  1457. strain to reduce memory usage unless it can get to that level.  If your
  1458. program creates complicated data structures, just make them in core and
  1459. give a fatal error if malloc returns zero.
  1460.  
  1461.    If a program works by lines and could be applied to arbitrary
  1462. user-supplied input files, it should keep only a line in memory, because
  1463. this is not very hard and users will want to be able to operate on input
  1464. files that are bigger than will fit in core all at once.
  1465.  
  1466. Standards for Command Line Interfaces
  1467. *************************************
  1468.  
  1469.    Please don't make the behavior of a utility depend on the name used
  1470. to invoke it.  It is useful sometimes to make a link to a utility with
  1471. a different name, and that should not change what it does.
  1472.  
  1473.    Instead, use a run time option or a compilation switch or both to
  1474. select among the alternate behaviors.
  1475.  
  1476.    Likewise, please don't make the behavior of the program depend on the
  1477. type of output device it is used with.  Device independence is an
  1478. important principle of the system's design; do not compromise it merely
  1479. to save someone from typing an option now and then.
  1480.  
  1481.    If you think one behavior is most useful when the output is to a
  1482. terminal, and another is most useful when the output is a file or a
  1483. pipe, then it is usually best to make the default behavior the one that
  1484. is useful with output to a terminal, and have an option for the other
  1485. behavior.
  1486.  
  1487.    Compatibility requires certain programs to depend on the type of
  1488. output device.  It would be disastrous if `ls' or `sh' did not do so in
  1489. the way all users expect.  In some of these cases, we supplement the
  1490. program with a preferred alternate version that does not depend on the
  1491. output device type.  For example, we provide a `dir' program much like
  1492. `ls' except that its default output format is always multi-column
  1493. format.
  1494.  
  1495.    It is a good idea to follow the POSIX guidelines for the
  1496. command-line options of a program.  The easiest way to do this is to use
  1497. `getopt' to parse them.  Note that the GNU version of `getopt' will
  1498. normally permit options anywhere among the arguments unless the special
  1499. argument `--' is used.  This is not what POSIX specifies; it is a GNU
  1500. extension.
  1501.  
  1502.    Please define long-named options that are equivalent to the
  1503. single-letter Unix-style options.  We hope to make GNU more user
  1504. friendly this way.  This is easy to do with the GNU function
  1505. `getopt_long'.
  1506.  
  1507.    One of the advantages of long-named options is that they can be
  1508. consistent from program to program.  For example, users should be able
  1509. to expect the "verbose" option of any GNU program which has one, to be
  1510. spelled precisely `--verbose'.  To achieve this uniformity, look at the
  1511. table of common long-option names when you choose the option names for
  1512. your program.  The table appears below.
  1513.  
  1514.    If you use names not already in the table, please send
  1515. `gnu@prep.ai.mit.edu' a list of them, with their meanings, so we can
  1516. update the table.
  1517.  
  1518.    It is usually a good idea for file names given as ordinary arguments
  1519. to be input files only; any output files would be specified using
  1520. options (preferably `-o').  Even if you allow an output file name as an
  1521. ordinary argument for compatibility, try to provide a suitable option
  1522. as well.  This will lead to more consistency among GNU utilities, so
  1523. that there are fewer idiosyncracies for users to remember.
  1524.  
  1525.    Programs should support an option `--version' which prints the
  1526. program's version number on standard output and exits successfully, and
  1527. an option `--help' which prints option usage information on standard
  1528. output and exits successfully.  These options should inhibit the normal
  1529. function of the command; they should do nothing except print the
  1530. requested information.
  1531.  
  1532. `auto-check'
  1533.      `-a' in `recode'.
  1534.  
  1535. `auto-reference'
  1536.      `-A' in `ptx'.
  1537.  
  1538. `after-date'
  1539.      `-N' in `tar'.
  1540.  
  1541. `all'
  1542.      `-a' in `du', `ls', `nm', `stty', `uname', and `unexpand'.
  1543.  
  1544. `all-text'
  1545.      `-a' in `diff'.
  1546.  
  1547. `almost-all'
  1548.      `-A' in `ls'.
  1549.  
  1550. `append'
  1551.      `-a' in `etags', `tee', `time'; `-r' in `tar'.
  1552.  
  1553. `archive'
  1554.      `-a' in `cp'.
  1555.  
  1556. `arglength'
  1557.      `-l' in `m4'.
  1558.  
  1559. `ascii'
  1560.      `-a' in `diff'.
  1561.  
  1562. `assume-new'
  1563.      `-W' in Make.
  1564.  
  1565. `assume-old'
  1566.      `-o' in Make.
  1567.  
  1568. `backward-search'
  1569.      `-B' in etags.
  1570.  
  1571. `batch'
  1572.      Used in GDB.
  1573.  
  1574. `baud'
  1575.      Used in GDB.
  1576.  
  1577. `before'
  1578.      `-b' in `tac'.
  1579.  
  1580. `binary'
  1581.      `-b' in `cpio' and `diff'.
  1582.  
  1583. `block-size'
  1584.      Used in `cpio' and `tar'.
  1585.  
  1586. `blocks'
  1587.      `-b' in `head' and `tail'.
  1588.  
  1589. `break-file'
  1590.      `-b' in `ptx'.
  1591.  
  1592. `brief'
  1593.      Used in various programs to make output shorter.
  1594.  
  1595. `bytes'
  1596.      `-c' in `head', `split', and `tail'.
  1597.  
  1598. `c++'
  1599.      `-C' in `etags'.
  1600.  
  1601. `catenate'
  1602.      `-A' in `tar'.
  1603.  
  1604. `cd'
  1605.      Used in various programs to specify the directory to use.
  1606.  
  1607. `changes'
  1608.      `-c' in `chgrp' and `chown'.
  1609.  
  1610. `classify'
  1611.      `-F' in `ls'.
  1612.  
  1613. `colons'
  1614.      `-c' in `recode'.
  1615.  
  1616. `command'
  1617.      `-c' in `su'; `-x' in GDB.
  1618.  
  1619. `compare'
  1620.      `-d' in `tar'.
  1621.  
  1622. `compress'
  1623.      `-Z' in `tar'.
  1624.  
  1625. `concatenate'
  1626.      `-A' in `tar'.
  1627.  
  1628. `confirmation'
  1629.      `-w' in `tar'.
  1630.  
  1631. `context'
  1632.      Used in `diff'.
  1633.  
  1634. `copyright'
  1635.      `-C' in `ptx' and `recode'.
  1636.  
  1637. `core'
  1638.      Used in GDB.
  1639.  
  1640. `count'
  1641.      `-q' in `who'.
  1642.  
  1643. `count-links'
  1644.      `-l' in `du'.
  1645.  
  1646. `create'
  1647.      Used in `tar' and `cpio'.
  1648.  
  1649. `cxref'
  1650.      `-x' in `etags'.
  1651.  
  1652. `date'
  1653.      `-d' in `touch'.
  1654.  
  1655. `debug'
  1656.      `-d' in Make and `m4'; `-t' in Bison.
  1657.  
  1658. `define'
  1659.      `-D' in `m4'.
  1660.  
  1661. `defines'
  1662.      `-d' in Bison and `etags'.
  1663.  
  1664. `delete'
  1665.      `-D' in `tar'.
  1666.  
  1667. `dereference'
  1668.      `-L' in `chgrp', `chown', `cpio', `du', `ls', and `tar'.
  1669.  
  1670. `dereference-args'
  1671.      `-D' in `du'.
  1672.  
  1673. `diacritics'
  1674.      `-d' in `recode'.
  1675.  
  1676. `dictionary-order'
  1677.      `-d' in `look'.
  1678.  
  1679. `diff'
  1680.      `-d' in `tar'.
  1681.  
  1682. `digits'
  1683.      `-n' in `csplit'.
  1684.  
  1685. `directory'
  1686.      Specify the directory to use, in various programs.  In `ls', it
  1687.      means to show directories themselves rather than their contents.
  1688.      In `rm' and `ln', it means to not treat links to directories
  1689.      specially.
  1690.  
  1691. `discard-all'
  1692.      `-x' in `strip'.
  1693.  
  1694. `discard-locals'
  1695.      `-X' in `strip'.
  1696.  
  1697. `diversions'
  1698.      `-N' in `m4'.
  1699.  
  1700. `dry-run'
  1701.      `-n' in Make.
  1702.  
  1703. `ed'
  1704.      `-e' in `diff'.
  1705.  
  1706. `elide-empty-files'
  1707.      `-z' in `csplit'.
  1708.  
  1709. `entire-new-file'
  1710.      `-N' in `diff'.
  1711.  
  1712. `environment-overrides'
  1713.      `-e' in Make.
  1714.  
  1715. `eof'
  1716.      `-e' in `xargs'.
  1717.  
  1718. `epoch'
  1719.      Used in GDB.
  1720.  
  1721. `error-limit'
  1722.      Used in Makeinfo.
  1723.  
  1724. `error-output'
  1725.      `-o' in `m4'.
  1726.  
  1727. `escape'
  1728.      `-b' in `ls'.
  1729.  
  1730. `exclude-from'
  1731.      `-X' in `tar'.
  1732.  
  1733. `exec'
  1734.      Used in GDB.
  1735.  
  1736. `exit'
  1737.      `-x' in `xargs'.
  1738.  
  1739. `expand-tabs'
  1740.      `-t' in `diff'.
  1741.  
  1742. `expression'
  1743.      `-e' in `sed'.
  1744.  
  1745. `extern-only'
  1746.      `-g' in `nm'.
  1747.  
  1748. `extract'
  1749.      `-i' in `cpio'; `-x' in `tar'.
  1750.  
  1751. `faces'
  1752.      `-f' in `finger'.
  1753.  
  1754. `fast'
  1755.      `-f' in `su'.
  1756.  
  1757. `file'
  1758.      `-f' in `info', Make, `mt', and `tar'; `-n' in `sed'; `-r' in
  1759.      `touch'.
  1760.  
  1761. `file-prefix'
  1762.      `-b' in Bison.
  1763.  
  1764. `file-type'
  1765.      `-F' in `ls'.
  1766.  
  1767. `files-from'
  1768.      `-T' in `tar'.
  1769.  
  1770. `fill-column'
  1771.      Used in Makeinfo.
  1772.  
  1773. `flag-truncation'
  1774.      `-F' in `ptx'.
  1775.  
  1776. `fixed-output-files'
  1777.      `-y' in Bison.
  1778.  
  1779. `follow'
  1780.      `-f' in `tail'.
  1781.  
  1782. `footnote-style'
  1783.      Used in Makeinfo.
  1784.  
  1785. `force'
  1786.      `-f' in `cp', `ln', `mv', and `rm'.
  1787.  
  1788. `format'
  1789.      Used in `ls', `time', and `ptx'.
  1790.  
  1791. `forward-search'
  1792.      `-F' in `etags'.
  1793.  
  1794. `fullname'
  1795.      Used in GDB.
  1796.  
  1797. `gap-size'
  1798.      `-g' in `ptx'.
  1799.  
  1800. `get'
  1801.      `-x' in `tar'.
  1802.  
  1803. `graphic'
  1804.      `-i' in `ul'.
  1805.  
  1806. `graphics'
  1807.      `-g' in `recode'.
  1808.  
  1809. `group'
  1810.      `-g' in `install'.
  1811.  
  1812. `gzip'
  1813.      `-z' in `tar'.
  1814.  
  1815. `hashsize'
  1816.      `-H' in `m4'.
  1817.  
  1818. `header'
  1819.      `-h' in `objdump' and `recode'
  1820.  
  1821. `heading'
  1822.      `-H' in `who'.
  1823.  
  1824. `help'
  1825.      Used to ask for brief usage information.
  1826.  
  1827. `hide-control-chars'
  1828.      `-q' in `ls'.
  1829.  
  1830. `idle'
  1831.      `-u' in `who'.
  1832.  
  1833. `ifdef'
  1834.      `-D' in `diff'.
  1835.  
  1836. `ignore'
  1837.      `-I' in `ls'; `-x' in `recode'.
  1838.  
  1839. `ignore-all-space'
  1840.      `-w' in `diff'.
  1841.  
  1842. `ignore-backups'
  1843.      `-B' in `ls'.
  1844.  
  1845. `ignore-blank-lines'
  1846.      `-B' in `diff'.
  1847.  
  1848. `ignore-case'
  1849.      `-f' in `look' and `ptx'; `-i' in `diff'.
  1850.  
  1851. `ignore-errors'
  1852.      `-i' in Make.
  1853.  
  1854. `ignore-file'
  1855.      `-i' in `ptx'.
  1856.  
  1857. `ignore-indentation'
  1858.      `-S' in `etags'.
  1859.  
  1860. `ignore-init-file'
  1861.      `-f' in Oleo.
  1862.  
  1863. `ignore-interrupts'
  1864.      `-i' in `tee'.
  1865.  
  1866. `ignore-matching-lines'
  1867.      `-I' in `diff'.
  1868.  
  1869. `ignore-space-change'
  1870.      `-b' in `diff'.
  1871.  
  1872. `ignore-zeros'
  1873.      `-i' in `tar'.
  1874.  
  1875. `include'
  1876.      `-i' in `etags'; `-I' in `m4'.
  1877.  
  1878. `include-dir'
  1879.      `-I' in Make.
  1880.  
  1881. `incremental'
  1882.      `-G' in `tar'.
  1883.  
  1884. `info'
  1885.      `-i', `-l', and `-m' in Finger.
  1886.  
  1887. `initial'
  1888.      `-i' in `expand'.
  1889.  
  1890. `initial-tab'
  1891.      `-T' in `diff'.
  1892.  
  1893. `inode'
  1894.      `-i' in `ls'.
  1895.  
  1896. `interactive'
  1897.      `-i' in `cp', `ln', `mv', `rm'; `-e' in `m4'; `-p' in `xargs';
  1898.      `-w' in `tar'.
  1899.  
  1900. `jobs'
  1901.      `-j' in Make.
  1902.  
  1903. `just-print'
  1904.      `-n' in Make.
  1905.  
  1906. `keep-going'
  1907.      `-k' in Make.
  1908.  
  1909. `keep-files'
  1910.      `-k' in `csplit'.
  1911.  
  1912. `kilobytes'
  1913.      `-k' in `du' and `ls'.
  1914.  
  1915. `line-bytes'
  1916.      `-C' in `split'.
  1917.  
  1918. `lines'
  1919.      Used in `split', `head', and `tail'.
  1920.  
  1921. `link'
  1922.      `-l' in `cpio'.
  1923.  
  1924. `list'
  1925.      `-t' in `cpio'; `-l' in `recode'.
  1926.  
  1927. `list'
  1928.      `-t' in `tar'.
  1929.  
  1930. `literal'
  1931.      `-N' in `ls'.
  1932.  
  1933. `load-average'
  1934.      `-l' in Make.
  1935.  
  1936. `login'
  1937.      Used in `su'.
  1938.  
  1939. `machine'
  1940.      No listing of which programs already use this; someone should
  1941.      check to see if any actually do and tell `gnu@prep.ai.mit.edu'.
  1942.  
  1943. `macro-name'
  1944.      `-M' in `ptx'.
  1945.  
  1946. `mail'
  1947.      `-m' in `hello' and `uname'.
  1948.  
  1949. `make-directories'
  1950.      `-d' in `cpio'.
  1951.  
  1952. `makefile'
  1953.      `-f' in Make.
  1954.  
  1955. `mapped'
  1956.      Used in GDB.
  1957.  
  1958. `max-args'
  1959.      `-n' in `xargs'.
  1960.  
  1961. `max-chars'
  1962.      `-n' in `xargs'.
  1963.  
  1964. `max-lines'
  1965.      `-l' in `xargs'.
  1966.  
  1967. `max-load'
  1968.      `-l' in Make.
  1969.  
  1970. `max-procs'
  1971.      `-P' in `xargs'.
  1972.  
  1973. `mesg'
  1974.      `-T' in `who'.
  1975.  
  1976. `message'
  1977.      `-T' in `who'.
  1978.  
  1979. `minimal'
  1980.      `-d' in `diff'.
  1981.  
  1982. `mode'
  1983.      `-m' in `install', `mkdir', and `mkfifo'.
  1984.  
  1985. `modification-time'
  1986.      `-m' in `tar'.
  1987.  
  1988. `multi-volume'
  1989.      `-M' in `tar'.
  1990.  
  1991. `name-prefix'
  1992.      `-a' in Bison.
  1993.  
  1994. `new-file'
  1995.      `-W' in Make.
  1996.  
  1997. `no-builtin-rules'
  1998.      `-r' in Make.
  1999.  
  2000. `no-create'
  2001.      `-c' in `touch'.
  2002.  
  2003. `no-defines'
  2004.      `-D' in `etags'.
  2005.  
  2006. `no-dereference'
  2007.      `-d' in `cp'.
  2008.  
  2009. `no-keep-going'
  2010.      `-S' in Make.
  2011.  
  2012. `no-lines'
  2013.      `-l' in Bison.
  2014.  
  2015. `no-prof'
  2016.      `-e' in `gprof'.
  2017.  
  2018. `no-sort'
  2019.      `-p' in `nm'.
  2020.  
  2021. `no-split'
  2022.      Used in Makeinfo.
  2023.  
  2024. `no-static'
  2025.      `-a' in `gprof'.
  2026.  
  2027. `no-time'
  2028.      `-E' in `gprof'.
  2029.  
  2030. `no-validate'
  2031.      Used in Makeinfo.
  2032.  
  2033. `no-warn'
  2034.      Used in various programs to inhibit warnings.
  2035.  
  2036. `node'
  2037.      `-n' in `info'.
  2038.  
  2039. `nodename'
  2040.      `-n' in `uname'.
  2041.  
  2042. `nonmatching'
  2043.      `-f' in `cpio'.
  2044.  
  2045. `nstuff'
  2046.      `-n' in `objdump'.
  2047.  
  2048. `null'
  2049.      `-0' in `xargs'.
  2050.  
  2051. `number'
  2052.      `-n' in `cat'.
  2053.  
  2054. `number-nonblank'
  2055.      `-b' in `cat'.
  2056.  
  2057. `numeric-sort'
  2058.      `-n' in `nm'.
  2059.  
  2060. `numeric-uid-gid'
  2061.      `-n' in `cpio' and `ls'.
  2062.  
  2063. `nx'
  2064.      Used in GDB.
  2065.  
  2066. `old-archive'
  2067.      `-o' in `tar'.
  2068.  
  2069. `old-file'
  2070.      `-o' in Make.
  2071.  
  2072. `one-file-system'
  2073.      `-l' in `tar', `cp', and `du'.
  2074.  
  2075. `only-file'
  2076.      `-o' in `ptx'.
  2077.  
  2078. `only-prof'
  2079.      `-f' in `gprof'.
  2080.  
  2081. `only-time'
  2082.      `-F' in `gprof'.
  2083.  
  2084. `output'
  2085.      In various programs, specify the output file name.
  2086.  
  2087. `override'
  2088.      `-o' in `rm'.
  2089.  
  2090. `owner'
  2091.      `-o' in `install'.
  2092.  
  2093. `paginate'
  2094.      `-l' in `diff'.
  2095.  
  2096. `paragraph-indent'
  2097.      Used in Makeinfo.
  2098.  
  2099. `parents'
  2100.      `-p' in `mkdir' and `rmdir'.
  2101.  
  2102. `pass-all'
  2103.      `-p' in `ul'.
  2104.  
  2105. `pass-through'
  2106.      `-p' in `cpio'.
  2107.  
  2108. `port'
  2109.      `-P' in `finger'.
  2110.  
  2111. `portability'
  2112.      `-c' in `cpio' and `tar'.
  2113.  
  2114. `prefix-builtins'
  2115.      `-P' in `m4'.
  2116.  
  2117. `prefix'
  2118.      `-f' in `csplit'.
  2119.  
  2120. `preserve'
  2121.      Used in `tar' and `cp'.
  2122.  
  2123. `preserve-environment'
  2124.      `-p' in `su'.
  2125.  
  2126. `preserve-modification-time'
  2127.      `-m' in `cpio'.
  2128.  
  2129. `preserve-order'
  2130.      `-s' in `tar'.
  2131.  
  2132. `preserve-permissions'
  2133.      `-p' in `tar'.
  2134.  
  2135. `print'
  2136.      `-l' in `diff'.
  2137.  
  2138. `print-chars'
  2139.      `-L' in `cmp'.
  2140.  
  2141. `print-data-base'
  2142.      `-p' in Make.
  2143.  
  2144. `print-directory'
  2145.      `-w' in Make.
  2146.  
  2147. `print-file-name'
  2148.      `-o' in `nm'.
  2149.  
  2150. `print-symdefs'
  2151.      `-s' in `nm'.
  2152.  
  2153. `question'
  2154.      `-q' in Make.
  2155.  
  2156. `quiet'
  2157.      Used in many programs to inhibit the usual output.  *Note:* every
  2158.      program accepting `--quiet' should accept `--silent' as a synonym.
  2159.  
  2160. `quote-name'
  2161.      `-Q' in `ls'.
  2162.  
  2163. `rcs'
  2164.      `-n' in `diff'.
  2165.  
  2166. `read-full-blocks'
  2167.      `-B' in `tar'.
  2168.  
  2169. `readnow'
  2170.      Used in GDB.
  2171.  
  2172. `recon'
  2173.      `-n' in Make.
  2174.  
  2175. `record-number'
  2176.      `-R' in `tar'.
  2177.  
  2178. `recursive'
  2179.      Used in `chgrp', `chown', `cp', `ls', `diff', and `rm'.
  2180.  
  2181. `reference-limit'
  2182.      Used in Makeinfo.
  2183.  
  2184. `references'
  2185.      `-r' in `ptx'.
  2186.  
  2187. `regex'
  2188.      `-r' in `tac'.
  2189.  
  2190. `release'
  2191.      `-r' in `uname'.
  2192.  
  2193. `relocation'
  2194.      `-r' in `objdump'.
  2195.  
  2196. `rename'
  2197.      `-r' in `cpio'.
  2198.  
  2199. `replace'
  2200.      `-i' in `xargs'.
  2201.  
  2202. `report-identical-files'
  2203.      `-s' in `diff'.
  2204.  
  2205. `reset-access-time'
  2206.      `-a' in `cpio'.
  2207.  
  2208. `reverse'
  2209.      `-r' in `ls' and `nm'.
  2210.  
  2211. `reversed-ed'
  2212.      `-f' in `diff'.
  2213.  
  2214. `right-side-defs'
  2215.      `-R' in `ptx'.
  2216.  
  2217. `same-order'
  2218.      `-s' in `tar'.
  2219.  
  2220. `same-permissions'
  2221.      `-p' in `tar'.
  2222.  
  2223. `save'
  2224.      `-g' in `stty'.
  2225.  
  2226. `se'
  2227.      Used in GDB.
  2228.  
  2229. `sentence-regexp'
  2230.      `-S' in `ptx'.
  2231.  
  2232. `separate-dirs'
  2233.      `-S' in `du'.
  2234.  
  2235. `separator'
  2236.      `-s' in `tac'.
  2237.  
  2238. `sequence'
  2239.      Used by `recode' to chose files or pipes for sequencing passes.
  2240.  
  2241. `shell'
  2242.      `-s' in `su'.
  2243.  
  2244. `show-all'
  2245.      `-A' in `cat'.
  2246.  
  2247. `show-c-function'
  2248.      `-p' in `diff'.
  2249.  
  2250. `show-ends'
  2251.      `-E' in `cat'.
  2252.  
  2253. `show-function-line'
  2254.      `-F' in `diff'.
  2255.  
  2256. `show-tabs'
  2257.      `-T' in `cat'.
  2258.  
  2259. `silent'
  2260.      Used in many programs to inhibit the usual output.  *Note:* every
  2261.      program accepting `--silent' should accept `--quiet' as a synonym.
  2262.  
  2263. `size'
  2264.      `-s' in `ls'.
  2265.  
  2266. `sort'
  2267.      Used in `ls'.
  2268.  
  2269. `sparse'
  2270.      `-S' in `tar'.
  2271.  
  2272. `speed-large-files'
  2273.      `-H' in `diff'.
  2274.  
  2275. `squeeze-blank'
  2276.      `-s' in `cat'.
  2277.  
  2278. `starting-file'
  2279.      Used in `tar' and `diff' to specify which file within a directory
  2280.      to start processing with.
  2281.  
  2282. `stop'
  2283.      `-S' in Make.
  2284.  
  2285. `strict'
  2286.      `-s' in `recode'.
  2287.  
  2288. `strip'
  2289.      `-s' in `install'.
  2290.  
  2291. `strip-all'
  2292.      `-s' in `strip'.
  2293.  
  2294. `strip-debug'
  2295.      `-S' in `strip'.
  2296.  
  2297. `suffix'
  2298.      `-S' in `cp', `ln', `mv'.
  2299.  
  2300. `suffix-format'
  2301.      `-b' in `csplit'.
  2302.  
  2303. `sum'
  2304.      `-s' in `gprof'.
  2305.  
  2306. `summarize'
  2307.      `-s' in `du'.
  2308.  
  2309. `symbolic'
  2310.      `-s' in `ln'.
  2311.  
  2312. `symbols'
  2313.      Used in GDB and `objdump'.
  2314.  
  2315. `synclines'
  2316.      `-s' in `m4'.
  2317.  
  2318. `sysname'
  2319.      `-s' in `uname'.
  2320.  
  2321. `tabs'
  2322.      `-t' in `expand' and `unexpand'.
  2323.  
  2324. `tabsize'
  2325.      `-T' in `ls'.
  2326.  
  2327. `terminal'
  2328.      `-T' in `tput' and `ul'.
  2329.  
  2330. `text'
  2331.      `-a' in `diff'.
  2332.  
  2333. `time'
  2334.      Used in `ls' and `touch'.
  2335.  
  2336. `to-stdout'
  2337.      `-O' in `tar'.
  2338.  
  2339. `total'
  2340.      `-c' in `du'.
  2341.  
  2342. `touch'
  2343.      `-t' in Make, `ranlib', and `recode'.
  2344.  
  2345. `trace'
  2346.      `-t' in `m4'.
  2347.  
  2348. `traditional'
  2349.      `-t' in `hello'; `-G' in `m4' and `ptx'.
  2350.  
  2351. `tty'
  2352.      Used in GDB.
  2353.  
  2354. `typedefs'
  2355.      `-t' in `etags'.
  2356.  
  2357. `typedefs-and-c++'
  2358.      `-T' in `etags'.
  2359.  
  2360. `typeset-mode'
  2361.      `-t' in `ptx'.
  2362.  
  2363. `uncompress'
  2364.      `-z' in `tar'.
  2365.  
  2366. `unconditional'
  2367.      `-u' in `cpio'.
  2368.  
  2369. `undefine'
  2370.      `-U' in `m4'.
  2371.  
  2372. `undefined-only'
  2373.      `-u' in `nm'.
  2374.  
  2375. `update'
  2376.      `-u' in `cp', `etags', `mv', `tar'.
  2377.  
  2378. `verbose'
  2379.      Print more information about progress.  Many programs support this.
  2380.  
  2381. `verify'
  2382.      `-W' in `tar'.
  2383.  
  2384. `version'
  2385.      Print the version number.
  2386.  
  2387. `version-control'
  2388.      `-V' in `cp', `ln', `mv'.
  2389.  
  2390. `vgrind'
  2391.      `-v' in `etags'.
  2392.  
  2393. `volume'
  2394.      `-V' in `tar'.
  2395.  
  2396. `what-if'
  2397.      `-W' in Make.
  2398.  
  2399. `width'
  2400.      `-w' in `ls' and `ptx'.
  2401.  
  2402. `word-regexp'
  2403.      `-W' in `ptx'.
  2404.  
  2405. `writable'
  2406.      `-T' in `who'.
  2407.  
  2408. `zeros'
  2409.      `-z' in `gprof'.
  2410.  
  2411. Documenting Programs
  2412. ********************
  2413.  
  2414.    Please use Texinfo for documenting GNU programs.  See the Texinfo
  2415. manual, either the hardcopy or the version in the GNU Emacs Info
  2416. subsystem (`C-h i').  See existing GNU Texinfo files (e.g., those under
  2417. the `man/' directory in the GNU Emacs distribution) for examples.
  2418.  
  2419.    The title page of the manual should state the version of the program
  2420. which the manual applies to.  The Top node of the manual should also
  2421. contain this information.  If the manual is changing more frequently
  2422. than or independent of the program, also state a version number for the
  2423. manual in both of these places.
  2424.  
  2425.    The manual should document all command-line arguments and all
  2426. commands.  It should give examples of their use.  But don't organize
  2427. the manual as a list of features.  Instead, organize it by the concepts
  2428. a user will have before reaching that point in the manual.  Address the
  2429. goals that a user will have in mind, and explain how to accomplish
  2430. them.  Don't use Unix man pages as a model for how to write GNU
  2431. documentation; they are a bad example to follow.
  2432.  
  2433.    The manual should have a node named `PROGRAM Invocation' or
  2434. `Invoking PROGRAM', where PROGRAM stands for the name of the program
  2435. being described, as you would type it in the shell to run the program.
  2436. This node (together with its subnodes, if any) should describe the
  2437. program's command line arguments and how to run it (the sort of
  2438. information people would look in a man page for).  Start with an
  2439. `@example' containing a template for all the options and arguments that
  2440. the program uses.
  2441.  
  2442.    Alternatively, put a menu item in some menu whose item name fits one
  2443. of the above patterns.  This identifies the node which that item points
  2444. to as the node for this purpose, regardless of the node's actual name.
  2445.  
  2446.    There will be automatic features for specifying a program name and
  2447. quickly reading just this part of its manual.
  2448.  
  2449.    If one manual describes several programs, it should have such a node
  2450. for each program described.
  2451.  
  2452.    In addition to its manual, the package should have a file named
  2453. `NEWS' which contains a list of user-visible changes worth mentioning.
  2454. In each new release, add items to the front of the file and identify
  2455. the version they pertain to.  Don't discard old items; leave them in
  2456. the file after the newer items.  This way, a user upgrading from any
  2457. previous version can see what is new.
  2458.  
  2459.    If the `NEWS' file gets very long, move some of the older items into
  2460. a file named `ONEWS' and put a note at the end referring the user to
  2461. that file.
  2462.  
  2463.    Please do not use the term "pathname" that is used in Unix
  2464. documentation; use "file name" (two words) instead.  We use the term
  2465. "path" only for search paths, which are lists of file names.
  2466.  
  2467.    It is ok to supply a man page for the program as well as a Texinfo
  2468. manual if you wish to.  But keep in mind that supporting a man page
  2469. requires continual effort, each time the program is changed.  Any time
  2470. you spend on the man page is time taken away from more useful things you
  2471. could contribute.
  2472.  
  2473.    Thus, even if a user volunteers to donate a man page, you may find
  2474. this gift costly to accept.  Unless you have time on your hands, it may
  2475. be better to refuse the man page unless the same volunteer agrees to
  2476. take full responsibility for maintaining it--so that you can wash your
  2477. hands of it entirely.  If the volunteer ceases to do the job, then
  2478. don't feel obliged to pick it up yourself; it may be better to withdraw
  2479. the man page until another volunteer offers to carry on with it.
  2480.  
  2481.    Alternatively, if you expect the discrepancies to be small enough
  2482. that the man page remains useful, put a prominent note near the
  2483. beginning of the man page explaining that you don't maintain it and
  2484. that the Texinfo manual is more authoritative, and describing how to
  2485. access the Texinfo documentation.
  2486.  
  2487. Making Releases
  2488. ***************
  2489.  
  2490.    Package the distribution of Foo version 69.96 in a gzipped tar file
  2491. named `foo-69.96.tar.gz'.  It should unpack into a subdirectory named
  2492. `foo-69.96'.
  2493.  
  2494.    Building and installing the program should never modify any of the
  2495. files contained in the distribution.  This means that all the files
  2496. that form part of the program in any way must be classified into "source
  2497. files" and "non-source files".  Source files are written by humans and
  2498. never changed automatically; non-source files are produced from source
  2499. files by programs under the control of the Makefile.
  2500.  
  2501.    Naturally, all the source files must be in the distribution.  It is
  2502. okay to include non-source files in the distribution, provided they are
  2503. up-to-date and machine-independent, so that building the distribution
  2504. normally will never modify them.  We commonly include non-source files
  2505. produced by Bison, Lex, TeX, and Makeinfo; this helps avoid unnecessary
  2506. dependencies between our distributions, so that users can install
  2507. whichever packages they want to install.
  2508.  
  2509.    Non-source files that might actually be modified by building and
  2510. installing the program should *never* be included in the distribution.
  2511. So if you do distribute non-source files, always make sure they are up
  2512. to date when you make a new distribution.
  2513.  
  2514.    Make sure that the directory into which the distribution unpacks (as
  2515. well as any subdirectories) are all world-writable (octal mode 777).
  2516. This is so that old versions of `tar' which preserve the ownership and
  2517. permissions of the files from the tar archive will be able to extract
  2518. all the files even if the user is unprivileged.
  2519.  
  2520.    Make sure that all the files in the distribution are world-readable.
  2521.  
  2522.    Make sure that no file name in the distribution is more than 14
  2523. characters long.  Likewise, no file created by building the program
  2524. should have a name longer than 14 characters.  The reason for this is
  2525. that some systems adhere to a foolish interpretation of the POSIX
  2526. standard, and refuse to open a longer name, rather than truncating as
  2527. they did in the past.
  2528.  
  2529.    Don't include any symbolic links in the distribution itself.  If the
  2530. tar file contains symbolic links, then people cannot even unpack it on
  2531. systems that don't support symbolic links.  Also, don't use multiple
  2532. names for one file in different directories, because certain file
  2533. systems cannot handle this and that prevents unpacking the distribution.
  2534.  
  2535.    Try to make sure that all the file names will be unique on MS-DOG.  A
  2536. name on MS-DOG consists of up to 8 characters, optionally followed by a
  2537. period and up to three characters.  MS-DOG will truncate extra
  2538. characters both before and after the period.  Thus, `foobarhacker.c'
  2539. and `foobarhacker.o' are not ambiguous; they are truncated to
  2540. `foobarha.c' and `foobarha.o', which are distinct.
  2541.  
  2542.    Include in your distribution a copy of the `texinfo.tex' you used to
  2543. test print any `*.texinfo' files.
  2544.  
  2545.    Likewise, if your program uses small GNU software packages like
  2546. regex, getopt, obstack, or termcap, include them in the distribution
  2547. file.  Leaving them out would make the distribution file a little
  2548. smaller at the expense of possible inconvenience to a user who doesn't
  2549. know what other files to get.
  2550.  
  2551.